chore: version packages#97
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
a2a63f6 to
265086d
Compare
265086d to
d1889d9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@ocpp-debugkit/toolkit@0.3.0
Minor Changes
6775642: Add rich scenario assertions — 8 declarative assertion types for scenario evaluation:
event_order,event_count,payload_field,timing,session_state,failure_severity,no_failures,failure_countNew API:
runAssertions(),evaluateScenario(). Backward compatible —existing scenarios with only
expectedFailureswork unchanged.1b8cb39: Add three new CLI commands:
ocpp-debugkit ci [dir]— run all scenarios, exit 0/1 for CI integration, supports--format jsonocpp-debugkit anonymize <file>— strip sensitive fields from trace filesocpp-debugkit diff <a> <b>— compare two trace files, supports--format jsonAlso fixes evaluateScenario to deduplicate failure codes before comparison.
c580737: Add 5 new failure detection rules for v0.3.0:
SUSPICIOUS_SESSION_DURATION— sessions shorter than 60s or longer than 24hSLOW_RESPONSE— Call→CallResult/CallError gap exceeding 10sHEARTBEAT_INTERVAL_VIOLATION— heartbeat intervals deviating >50% from expectedMETER_VALUE_ANOMALY— non-monotonic or negative meter readingsUNRESPONSIVE_CSMS— Call messages with no matching CallResult or CallErrorTotal detection rules: 15 (10 from v0.1/v0.2 + 5 new).
8db857e: Add 5 new scenarios using rich assertions (15 total):
slow-csms-response— SLOW_RESPONSE + timing assertionmeter-anomaly— METER_VALUE_ANOMALY + payload_field/event_count assertionsshort-session— SUSPICIOUS_SESSION_DURATION + session_state/event_count assertionsheartbeat-irregular— HEARTBEAT_INTERVAL_VIOLATION + event_count assertionunresponsive-csms— UNRESPONSIVE_CSMS + failure_severity/failure_count assertionsAdd
compareScenarioReports()— compare two scenario evaluation results for regression testing.8f765f9: Add
diffTraces()— compare two parsed traces and surface event-level differences:web@0.1.3
Patch Changes